home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / SMIL_Ex / ex2 / ex2b_region.smil < prev    next >
Encoding:
Text File  |  2001-08-12  |  987 b   |  31 lines

  1. <!-- This example shows placement of title and caption
  2.      by using a percentage of the main window.
  3. -->
  4. <smil>
  5.   <head>
  6.       <meta name="Author" content="Kathy Barshatzky" />
  7.       <meta name="Copyright" content="javakathy.com" />
  8.       <layout>
  9.          <root-layout width="460" height="460" />
  10.          <region id="photo_region"
  11.             width="384" height="288" top="100" left="38" />
  12.          <region id="caption_region"
  13.             width="360" height="40" top="88%" left="10%" />
  14.          <region id="title"
  15.             width="150" height="40" top="12%" left="30%" />
  16.       </layout>
  17.   </head>
  18.   <body>
  19.       <par>
  20.          <text src="title.txt" alt="Cornell Hockey"
  21.              region="title" dur="indefinite"/>
  22.          <img src="hockeyTeco.jpg" alt="hockey image"
  23.              region="photo_region" dur="indefinite" />
  24.          <text src="caption2.txt"
  25.              region="caption_region" dur="indefinite"/>
  26.       </par>
  27.   </body>
  28. </smil>
  29.  
  30.  
  31.